home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Frameworks / Extension Shell 1.3 / Sample Extensions / Bell Test ƒ / BTAddrsTable.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-05  |  951 b   |  36 lines  |  [TEXT/R*ch]

  1. /*    NAME:
  2.         BTAddrsTable.h
  3.  
  4.     WRITTEN BY:
  5.         Dair Grant
  6.                  
  7.     DESCRIPTION:
  8.         Header file for AddrsTable.c. Contains the definition of an extended
  9.         AddressTable, for use with the Bell Test Extension.
  10.  
  11.     ___________________________________________________________________________
  12. */
  13. #ifndef __BELLTESTADDRSTABLE__
  14. #define __BELLTESTADDRSTABLE__
  15. //=============================================================================
  16. //        Include files                                                                 
  17. //-----------------------------------------------------------------------------
  18. #include "ESConstants.h"
  19.  
  20.  
  21.  
  22.  
  23.  
  24. //=============================================================================
  25. //        Structures                                                                 
  26. //-----------------------------------------------------------------------------
  27. // Our extended address table is two ProcPtrs, and a Handle
  28. typedef struct {
  29.     ProcPtr            theTable[3];            // Runs from 1..2
  30.     Handle            theSound;                // The noise to play
  31. } BTAddressTable;
  32.  
  33.  
  34.  
  35. #endif
  36.